/* http://meyerweb.com/eric/tools/css/reset/ 2. v2.0 | 20110126
  License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1 {
  text-align: center;
  font-size: x-large;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
}
h3 {
  text-align: center;
  font-size: larger;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
}
h2 {
  text-align: center;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
}

.dottedlines {
  border-bottom: thin blue dotted;
  margin: 0 auto;
  width: 50%;
}

.bordered {
  text-align: center;
  font-size: large;
  font-weight: bold;
  background-color: rgb(160 175 182);
  border: 5px solid black;
  padding: 40px 30px; /*top-bottom left-right*/
  margin: 30px auto; /*top-bottom left-right*/
  width: 130px;
  height: 100px;
  box-shadow: 0px 0px 0px 15px lightblue inset;
  box-shadow: 0px 0px 0px 20px palevioletred;
}
.container {
  width: 600px;
  height: 100px;
  border: 2px solid black;
  margin: 10px auto;
}

.col {
  width: 170px; /*we take conatainer 600px and inside it 3 col class 200px */ /*10+5+170+5+10=200px width*/
  height: 70px;
  background-color: cadetblue;
  float: left;
  padding: 10px;
  margin: 5px;
}

.containerbig {
  width: 600px;
  height: 200px;
  border: 2px solid black;
  margin: 10px auto;
}

.cols {
  width: 170px;
  height: 68px;
  background-color: cadetblue;
  float: left;
  border: 1px solid black;
  padding: 10px;
  margin: 5px;
}

.containerloop {
  width: 600px;
  height: 100px;
  border: 2px solid black;
  margin: 10px auto;
}

.coles {
  width: 168px;
  height: 68px;
  background-color: cadetblue;
  float: left;
  border: 1px solid black;
  padding: 10px;
  margin: 5px;
}

.grey {
  background-color: grey;
}
.skyblue {
  background-color: skyblue;
}
.black {
  background-color: black;
}
.pink {
  background-color: pink;
}

.colourcircle {
  height: 15px;
  width: 15px;
  border-radius: 50%;
}

.containerinside .ind-container,
.containerinside .colourcircle,
.containerinside .textcontaint {
  display: inline-block;
}

.containerinside {
  margin: 20px auto;
  width: 100%;
  margin-left: 40%;
}
.textcontaint {
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  margin: 20px 8px;
}
